9301d9d070c6c9b1848bb78a4d989e40c73ab3bd,presto/presto-accumulo/src/main/java/com/facebook/presto/accumulo/io/AccumuloPageSink.java,AccumuloPageSink,toMutation,#Row#number#List#AccumuloRowSerializer#,144

Before Change


                setText(row.getField(ach.getOrdinal()), value, serializer);

                // And add the bytes to the Mutation
                m.put(ach.getFamily(), ach.getQualifier(), new Value(value.copyBytes()));
            }
        }

After Change


                setText(row.getField(ach.getOrdinal()), value, serializer);

                // And add the bytes to the Mutation
                m.put(ach.getFamily().get(), ach.getQualifier().get(), new Value(value.copyBytes()));
            }
        }